/* =========================
   SERVICE PAGE (CORPORATE)
========================= */

body {
  margin: 0;
  font-family: 'Roboto', sans-serif;
  background-color: #f5f7ff;
  color: #1a1a1a;
  line-height: 1.6;
}

/* ===== HERO ===== */
.service-hero {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  height: 500px;
  background: linear-gradient(rgba(0,0,0,0.55), rgba(0,0,0,0.75)), url("images/heroimage2.jpg") center/cover no-repeat;
  color: #fff;
  padding: 0 20px;
}

.hero-content h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 20px;
}

.hero-content p {
  font-size: 20px;
  max-width: 700px;
  margin: 0 auto 30px;
}

/* ===== CTA BUTTON ===== */
.cta-btn {
  display: inline-block;
  padding: 15px 40px;
  background: #0077cc;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  border-radius: 35px;
  transition: 0.3s ease;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.cta-btn:hover {
  background: #005fa3;
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ===== MAIN CONTENT ===== */
.service-content {
  padding: 80px 60px;
}

.service-text {
  max-width: 900px;
  margin: 0 auto;
}

.service-text h2 {
  font-size: 28px;
  margin: 40px 0 20px;
  color: #003366;
  border-left: 5px solid #0077cc;
  padding-left: 12px;
}

.service-text p {
  font-size: 17px;
  margin-bottom: 20px;
  color: #333;
}

.service-text ul,
.service-text ol {
  margin: 20px 0 30px 20px;
}

.service-text li {
  margin-bottom: 12px;
  font-size: 16px;
}

/* Feature list with subtle card style */
.feature-list li {
  background: #fff;
  padding: 12px 15px;
  margin-bottom: 10px;
  border-left: 5px solid #0077cc;
  border-radius: 5px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Process list with numbered style */
.process-list li {
  background: #eef4fc;
  padding: 12px 15px;
  margin-bottom: 12px;
  border-radius: 5px;
  border-left: 5px solid #005fa3;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .service-hero {
    height: auto;
    padding: 60px 20px;
  }

  .hero-content h1 {
    font-size: 36px;
  }

  .service-content {
    padding: 60px 20px;
  }

  .service-text h2 {
    font-size: 24px;
  }
}

/* ================= FOOTER ================= */

.service-footer{
  background:url("../images/heroimage2.jpg") center/cover no-repeat;
  position:relative;
  color:#fff;
}

.footer-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.85);
}

.footer-content{
  position:relative;
  max-width:1200px;
  margin:auto;
  padding:70px 25px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:40px;
}

.footer-brand img{
  width:140px;
  margin-bottom:15px;
}

.social-icons{
  display:flex;
  gap:15px;
}

.social-icons a{
  width:36px;
  height:36px;
  background:var(--gold);
  color:#000;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
}

.footer-bottom{
  position:relative;
  text-align:center;
  padding:20px;
  border-top:1px solid rgba(255,255,255,.15);
  font-size:14px;
}


.syntax-brand{
  color: orange;
  font-weight: 600; /* optional */
}


